home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / unrar-free.postinst < prev    next >
Encoding:
Text File  |  2007-12-15  |  421 b   |  25 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure|abort-upgrade)
  7.         update-alternatives --install /usr/bin/unrar unrar \
  8.         /usr/bin/unrar-free 30 \
  9.         --slave /usr/share/man/man1/unrar.1.gz unrar.1.gz \
  10.         /usr/share/man/man1/unrar-free.1.gz
  11.     ;;
  12.     
  13.     abort-remove|abort-deconfigure)
  14.     ;;
  15.     
  16.     *)
  17.       echo "postinst called with unknown argument \$1'" >&2
  18.       exit 0
  19.     ;;
  20. esac
  21.  
  22.  
  23.  
  24. exit 0
  25.